home *** CD-ROM | disk | FTP | other *** search
-
- CheckPlus v1.0
- --------------
-
- © 1992 by David Kinder
- ----------------------
-
- Use
- ---
-
- CheckPlus is a small program that can be used in script files to tell
- whether the system is running KickStart 2.0 or not. If KickStart 2.0 is
- not found (i.e. an old A500) then CheckPlus sets the return value to WARN.
- If KickStart 2.0 is found (i.e. an A500+) then the return value is set to OK.
-
- Example
- -------
-
- The following script shows the use of CheckPlus:
-
- ; Example script
-
- CheckPlus
-
- if WARN
- ; Run some KickStart 1.3 only programs here
- Else
- ; Run some KickStart 2.0 only prpgrams here
- EndIf
-
- ; Run programs for both machines here
-
-
-